home *** CD-ROM | disk | FTP | other *** search
/ Kit PC World De Ampliacion De Windows 95 / Kit PC World de ampliacion de Windows 95.iso / internet / sweeper / samples / olecon~1 / controls / localize / french / locali~1.odl < prev    next >
Text File  |  1995-11-21  |  2KB  |  78 lines

  1. //=--------------------------------------------------------------------------=
  2. // Localize.ODL
  3. //=--------------------------------------------------------------------------=
  4. // ODL file for the control(s) and automation object(s) in this inproc server
  5. //
  6. // marcwan, 10/95
  7. //
  8. #include <olectl.h>
  9. #include "dispids.h"
  10.  
  11. // can't include oaidl.h, so this will have to do
  12. //
  13. #define DISPID_NEWENUM -4
  14.  
  15.  
  16. //=--------------------------------------------------------------------------=
  17. // the libid for this type libray
  18. //
  19. [
  20.     uuid(1edce660-240a-11cf-9d53-00aa003c9cb6),
  21.     helpstring("Les Objets LocalizΘe"),
  22.     lcid(0x40c),
  23.     version(1.0)
  24. ]
  25. library LocalizeObjects {
  26.  
  27.     // standard imports
  28.     //
  29.     importlib("STDOLE32.TLB");
  30.     importlib(STDTYPE_TLB);
  31.  
  32.     // primary dispatch interface for CLocalize control
  33.     //
  34.     [
  35.         uuid(200b0620-240a-11cf-9d53-00aa003c9cb6),
  36.     helpstring("Localize Control"),
  37.         hidden,
  38.     dual,
  39.     odl
  40.     ]
  41.     interface ILocalize : IDispatch {
  42.  
  43.         // properties
  44.     //
  45.  
  46.         // methods
  47.     //
  48.         [id(DISPID_ABOUTBOX), helpstring("Le Boite About")]
  49.             void AboutBox(void);
  50.     };
  51.  
  52.     // event interface for CLocalize controls ...
  53.     //
  54.     [
  55.         uuid(2140c700-240a-11cf-9d53-00aa003c9cb6),
  56.     helpstring("Event interface for Localize control"),
  57.     hidden
  58.     ]
  59.     dispinterface DLocalizeEvents {
  60.         properties:
  61.     methods:
  62.     };
  63.  
  64.     // coclass for CLocalize controls
  65.     //
  66.     [
  67.         uuid(22907880-240a-11cf-9d53-00aa003c9cb6),
  68.     helpstring("Localize control")
  69.     ]
  70.     coclass Localize {
  71.         [default]         interface ILocalize;
  72.     [default, source] dispinterface DLocalizeEvents;
  73.     };
  74. };
  75.  
  76.  
  77.  
  78.